* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Ubuntu,
    Cantarell,
    Noto Sans,
    sans-serif;
  background: linear-gradient(180deg, #f8fbf8 0%, #eefcf4 100%);
  color: #111;
}

.wrap {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 16px;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0a66c2;
  font-weight: 700;
}

.title {
  margin: 10px 0 12px;
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.subtitle {
  margin: 0 0 14px;
  color: #333;
  font-style: italic;
}

.text {
  margin: 0 0 12px;
  color: #222;
  line-height: 1.6;
}

strong {
  color: #0a66c2;
}

.embed {
  margin: 14px 0 10px;
  background: #14161a;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.embed .placeholder {
  color: #fff;
  opacity: 0.9;
  text-align: center;
  font-size: 16px;
}

.note {
  margin: 8px 2px 0;
  color: #666;
  font-size: 13px;
}

.cta {
  display: block;
  margin: 12px auto 0;
  padding: 16px 26px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(135deg, #1e7f4e 0%, #2fb170 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(31, 127, 78, 0.48);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
  animation:
    pulse 2.5s infinite,
    cta-bounce 1.8s ease-in-out infinite;
  outline: none;
}
.cta:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(31, 127, 78, 0.58);
}
.cta:focus-visible {
  box-shadow:
    0 0 0 3px rgba(47, 177, 112, 0.35),
    0 16px 36px rgba(31, 127, 78, 0.48);
}

@keyframes pulse {
  0% {
    box-shadow: 0 12px 28px rgba(31, 127, 78, 0.42);
  }
  50% {
    box-shadow: 0 20px 44px rgba(31, 127, 78, 0.58);
  }
  100% {
    box-shadow: 0 12px 28px rgba(31, 127, 78, 0.42);
  }
}
@keyframes cta-bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-4px);
  }
  60% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
