:root {
  --bg-overlay: rgba(10, 16, 32, 0.62);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.82);
  --card-bg: rgba(18, 23, 38, 0.74);
  --card-stroke: rgba(255, 255, 255, 0.16);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
  --whatsapp: #25d366;
  --telegram: #229ed9;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text-main);
}

body {
  background:
    linear-gradient(var(--bg-overlay), var(--bg-overlay)),
    url("https://images.pexels.com/photos/4483610/pexels-photo-4483610.jpeg?auto=compress&cs=tinysrgb&w=2000")
      center/cover no-repeat fixed;
}

.hero {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px 14px;
  gap: 16px;
}

.hero__backdrop {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.card {
  position: relative;
  width: min(420px, 100%);
  background: var(--card-bg);
  border: 1px solid var(--card-stroke);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1;
  animation: showUp 450ms ease-out;
}

.brand {
  z-index: 1;
  width: min(420px, 100%);
  display: flex;
  justify-content: center;
}

.brand__logo {
  width: 100%;
  max-height: 96px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.card__cover {
  height: 248px;
  overflow: hidden;
}

.card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.04);
}

.card__content {
  padding: 16px;
}

.card__name {
  margin: 0;
  text-align: center;
  font-size: clamp(1.3rem, 4.8vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.card__role {
  margin: 6px 0 14px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.card__actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.btn {
  width: 100%;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  min-height: 46px;
  font-size: 1rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn--whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}

.btn--telegram {
  background: var(--telegram);
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.28);
}

.btn__icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.card__message {
  background: rgba(255, 255, 255, 0.98);
  color: #111927;
  padding: 12px 13px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.card__message p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.92rem;
}

@keyframes showUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 560px) {
  body {
    background-attachment: scroll;
  }

  .card__actions {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero {
    padding: 12px;
    gap: 12px;
  }

  .brand__logo {
    max-height: 80px;
  }

  .card__cover {
    height: 210px;
  }

  .card__content {
    padding: 14px;
  }

  .btn {
    min-height: 44px;
    font-size: 0.96rem;
  }

  .card__message p {
    font-size: 0.9rem;
  }
}
