:root {
  --bg-main: #0a0c12;
  --bg-deep: #05060b;
  --bg-panel: rgba(9, 12, 20, 0.9);
  --text-main: #f2f4f8;
  --text-dim: rgba(242, 244, 248, 0.7);
  --accent: #9fd8e8;
  --accent-strong: #86c7d8;
  --accent-soft: #c8efe9;
  --accent-muted: rgba(159, 216, 232, 0.28);
  --glow: rgba(159, 216, 232, 0.35);
  --star: rgba(255, 255, 255, 0.06);
  --glass: rgba(10, 14, 24, 0.55);
  --glass-border: rgba(159, 216, 232, 0.18);
}

/* Базовые стили */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-deep);
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Скроллбар */

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(159, 216, 232, 0.6) rgba(8, 10, 16, 0.6);
}

*::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

*::-webkit-scrollbar-track {
  background: rgba(8, 10, 16, 0.6);
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  border-radius: 999px;
  border: 3px solid rgba(8, 10, 16, 0.7);
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
}

/* Фон-canvas */

#hero-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 0%, #182033 0, #0a0c12 55%),
    radial-gradient(circle at 80% 100%, #141a28 0, #05060b 55%),
    radial-gradient(1px 1px at 20% 30%, var(--star) 0, transparent 60%),
    radial-gradient(1px 1px at 80% 20%, var(--star) 0, transparent 60%),
    radial-gradient(1px 1px at 70% 70%, var(--star) 0, transparent 60%),
    radial-gradient(1px 1px at 35% 65%, var(--star) 0, transparent 60%),
    radial-gradient(1px 1px at 55% 40%, var(--star) 0, transparent 60%);
}

/* Шапка */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 7vw;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 8, 16, 0.92),
    rgba(5, 8, 16, 0.45),
    transparent
  );
  border-bottom: 1px solid rgba(159, 216, 232, 0.12);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  position: absolute;
  left: 7vw;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: transparent;
  display: inline-block;
  object-fit: contain;
}

.logo-text {
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav a {
  position: relative;
  text-decoration: none;
  color: rgba(242, 244, 248, 0.78);
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  transition: width 0.2s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

.nav-signin {
  font-size: 13px;
  text-decoration: none;
  color: var(--accent);
  border-radius: 999px;
  border: 1px solid var(--accent-muted);
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.2s ease, border-color 0.2s ease;
}

.nav-signin:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(125, 249, 255, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Мобильное меню */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  cursor: pointer;
  position: absolute;
  right: 7vw;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 7vw 96px;
  position: relative;
}

.hero-inner {
  max-width: 780px;
}

.hero-orb {
  position: absolute;
  right: 35vw;
  top: 50%;
  width: 360px;
  height: 360px;
  transform: translateY(-50%);
  pointer-events: none;
  --orb-color: #9fd8e8;
  --orb-glow: rgba(159, 216, 232, 0.35);
  --orbit-radius: 180px;
  --orbit-duration: 60s;
}

.orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8fbff 0%, var(--orb-color) 35%, rgba(20, 28, 44, 0.2) 70%);
  box-shadow: 0 0 60px var(--orb-glow), inset 0 0 40px rgba(255, 255, 255, 0.15);
  opacity: 0.9;
  transition: background 1.6s ease, box-shadow 1.6s ease;
}

.orb-glow {
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orb-glow) 0%, transparent 65%);
  filter: blur(6px);
  transition: background 1.6s ease, opacity 1.6s ease;
}

.orb-caption {
  position: absolute;
  left: 50%;
  bottom: -139px;
  transform: translateX(-50%);
  width: min(320px, 70vw);
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-main);
  font-size: 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.orb-title {
  display: block;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.orb-text {
  display: block;
  margin-top: 6px;
  color: var(--text-dim);
  font-size: 12px;
}

.orb-switching .orb-caption {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
}

.orb-orbit {
  position: absolute;
  inset: 0;
  animation: orb-rotate var(--orbit-duration) linear infinite;
  transition: opacity 0.6s ease;
}

.orb-switching .orb-orbit {
  opacity: 0;
}

.orb-topic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translate(var(--orbit-radius));
}

.orb-topic__spin {
  display: inline-block;
  animation: orb-counter var(--orbit-duration) linear infinite;
}

.orb-topic__label {
  display: inline-block;
  transform: rotate(calc(-1 * var(--angle)));
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--topic-color, var(--text-main));
  background: rgba(8, 12, 22, 0.7);
  border: 1px solid var(--topic-color, rgba(159, 216, 232, 0.6));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  transition: opacity 0.6s ease, color 0.6s ease, border-color 0.6s ease;
}

.orb-switching .orb-topic__label {
  opacity: 0;
}

@keyframes orb-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes orb-counter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid var(--glass-border);
  background: radial-gradient(circle at 0 0, rgba(159, 216, 232, 0.2), 0, 40%),
    var(--glass);
  margin-bottom: 20px;
  color: rgba(242, 244, 248, 0.8);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #e6feff, var(--accent));
  box-shadow: 0 0 12px var(--glow);
}

.hero-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.hero-title span {
  display: block;
  color: #ffffff;
  background: linear-gradient(
    120deg,
    #ffffff 0%,
    var(--accent-soft) 18%,
    var(--accent) 38%,
    #ffffff 58%,
    var(--accent-soft) 78%,
    var(--accent-strong) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: hero-shimmer 6s ease-in-out infinite;
}

@keyframes hero-shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  max-width: 520px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

/* Кнопки */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease,
    box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #0b1116;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.8), 0 0 22px rgba(159, 216, 232, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95), 0 0 28px rgba(159, 216, 232, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
}

.btn-ghost:hover {
  border-color: rgba(125, 249, 255, 0.65);
  background: rgba(0, 0, 0, 0.6);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

/* Hero статистика */

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

.hero-warning {
  display: inline-flex;
  align-items: center;
  margin: 16px 0 0;
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(242, 244, 248, 0.85);
  border: 1px solid rgba(159, 216, 232, 0.28);
  border-radius: 999px;
  background: rgba(10, 14, 24, 0.45);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.2px;
}

.meta-number {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.meta-label {
  opacity: 0.8;
}

/* Секции */

.section {
  padding: 80px 7vw;
  position: relative;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
}

.section::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg-deep), rgba(5, 6, 11, 0));
}

.section::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg-deep), rgba(5, 6, 11, 0));
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-dark {
  background: radial-gradient(circle at 0 0, #141a27 0, #05060b 55%);
}

.section-light {
  background: radial-gradient(circle at 100% 0, #121827 0, #05060b 55%);
}

.section-small {
  padding-block: 40px;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-title {
  font-size: 26px;
  margin: 0 0 8px;
}

.section-lead {
  margin: 0 0 32px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
}

/* Сетки и карточки */

.grid {
  display: grid;
  gap: 20px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.65), 0 0 22px rgba(159, 216, 232, 0.06);
}

.card h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.card p {
  font-size: 14px;
  color: rgba(242, 244, 248, 0.76);
  margin: 0;
}

.card-outline {
  background: rgba(6, 10, 18, 0.92);
  border: 1px solid rgba(125, 249, 255, 0.12);
}

.card-list {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  font-size: 13px;
  color: rgba(242, 244, 248, 0.76);
}

.card-list li::before {
  content: "• ";
  color: var(--accent);
}

.pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 249, 255, 0.25);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: rgba(242, 244, 248, 0.8);
}

.card-link {
  display: inline-flex;
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Map CTA */

.map-cta {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(242, 244, 248, 0.8);
}

.map-cta .btn {
  padding: 12px 40px;
  min-width: 240px;
  font-size: 14px;
}

/* Модальное окно */

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.modal--open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.7);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(520px, 90vw);
  border-radius: 18px;
  padding: 22px 22px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 24px rgba(159, 216, 232, 0.08);
  z-index: 1;
}

.modal__title {
  margin: 0 0 10px;
  font-size: 18px;
}

.modal__text {
  margin: 0;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.6;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(159, 216, 232, 0.3);
  background: rgba(8, 10, 16, 0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.modal__close:hover {
  border-color: rgba(159, 216, 232, 0.6);
}

/* Контакты */

.contacts-inner {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(242, 244, 248, 0.8);
}

.contact-form {
  flex: 1;
  max-width: 420px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: var(--bg-panel);
  border: 1px solid rgba(125, 249, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(242, 244, 248, 0.8);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 4px;
  border-radius: 10px;
  border: 1px solid rgba(125, 249, 255, 0.12);
  background: rgba(6, 9, 16, 0.95);
  color: #fff;
  padding: 8px 10px;
  font-family: inherit;
  font-size: 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(125, 249, 255, 0.8);
}

.form-success {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(159, 216, 232, 0.35);
  background: rgba(8, 12, 22, 0.6);
  color: var(--text-main);
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.form-success.is-visible {
  display: block;
  opacity: 1;
}

.form-success.is-hiding {
  opacity: 0;
}

.form-success.is-success {
  border-color: rgba(111, 219, 160, 0.7);
  background: rgba(14, 32, 24, 0.65);
  box-shadow: 0 0 18px rgba(111, 219, 160, 0.25);
  color: #d9f7e7;
}

.form-success.is-error {
  border-color: rgba(255, 120, 120, 0.7);
  background: rgba(40, 16, 20, 0.7);
  box-shadow: 0 0 18px rgba(255, 120, 120, 0.25);
  color: #ffe1e1;
}

/* Футер */

.site-footer {
  border-top: 1px solid rgba(125, 249, 255, 0.08);
  background: var(--bg-deep);
  padding: 18px 7vw 24px;
  font-size: 12px;
  color: rgba(242, 244, 248, 0.55);
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* Адаптив */

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 64px;
    right: 7vw;
    left: auto;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(6, 8, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    flex-direction: column;
    gap: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .nav--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-signin {
    display: none;
  }

  .hero {
    padding-top: 110px;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 96px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-orb {
    display: none;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }

  .contacts-inner {
    flex-direction: column;
  }

  .map-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions .btn {
    max-width: 100%;
  }


  .site-header {
    padding-inline: 16px;
  }

  .logo {
    left: 16px;
  }

  .nav-toggle {
    right: 16px;
  }

  .section {
    padding-inline: 16px;
  }

  .site-footer {
    padding-inline: 16px;
  }
}

#wave-webgl {
  position: absolute;
  inset: 0;
  z-index: -1;   /* чтобы текст был поверх */
  pointer-events: none;
  overflow: hidden;
}

/* Transition to map */
.transition-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at center, rgba(20, 24, 32, 0.1) 0%, rgba(0, 0, 0, 0.55) 40%, rgba(0, 0, 0, 0.9) 75%, #000 100%),
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 65%),
    radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 65%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 65%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 65%);
  transition: opacity 0.45s ease;
  z-index: 9999;
  overflow: hidden;
}

.transition-overlay::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.12) 0 1px, rgba(0, 0, 0, 0) 1px 9px);
  opacity: 0;
  transform: scale(0.55);
}

body.is-transitioning .transition-overlay {
  opacity: 1;
}

body.is-transitioning .transition-overlay::before {
  opacity: 0.85;
  animation: tunnel-zoom 1.1s ease-in forwards;
}

body.is-transitioning .transition-overlay::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 100% 0%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 70%),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0) 70%);
  opacity: 0;
  animation: corners-in 0.55s ease-out forwards;
}

body.is-transitioning .site-header,
body.is-transitioning main,
body.is-transitioning #hero-bg {
  transition: transform 1.1s ease, filter 1.1s ease, opacity 1.1s ease;
  transform: scale(1.08);
  filter: blur(2px) saturate(0.85);
  opacity: 0.15;
  transform-origin: center;
}

@keyframes tunnel-zoom {
  0% {
    transform: scale(0.55);
    filter: blur(0);
  }
  65% {
    transform: scale(1.3);
    filter: blur(1px);
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
    filter: blur(2px);
  }
}

@keyframes corners-in {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
