:root {
  --bg-1: #0f172a;
  --bg-2: #163a63;
  --bg-3: #21558a;
  --surface: rgba(255, 255, 255, 0.10);
  --text: #f4f8ff;
  --muted: #c6d3e6;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(3, 8, 20, 0.26);
  --facebook: #1877f2;
  --telegram: #2aabee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(111, 179, 255, 0.24), transparent 24%),
    radial-gradient(circle at bottom left, rgba(42, 171, 238, 0.18), transparent 28%),
    linear-gradient(160deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 20px 40px;
  animation: page-fade 700ms ease-out both;
}

.hero {
  width: min(100%, 680px);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
}

.portrait {
  width: min(260px, 64vw);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 50%;
  display: block;
  box-shadow: 0 18px 40px rgba(3, 8, 20, 0.28);
  animation: float-in 900ms ease-out both, gentle-float 5s ease-in-out 1s infinite;
}

.copy {
  display: grid;
  gap: 10px;
  justify-items: center;
  animation: rise-in 800ms ease-out 120ms both;
}

.kicker {
  margin: 0;
  color: #8fc6ff;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.description {
  margin: 0;
  max-width: 26ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  animation: rise-in 800ms ease-out 220ms both;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(3, 8, 20, 0.32);
  border-color: rgba(143, 198, 255, 0.32);
}

.button-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.button-icon.facebook {
  background: var(--facebook);
}

.button-icon.telegram {
  background: var(--telegram);
}

@keyframes page-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 560px) {
  .hero {
    gap: 16px;
  }

  .portrait {
    width: min(220px, 70vw);
  }

  .description {
    font-size: 1rem;
    max-width: 24ch;
  }

  .actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
