* {
  box-sizing: border-box;
}

:root {
  --bg: #02030a;
  --card: rgba(10, 12, 24, 0.78);
  --stroke: rgba(130, 98, 255, 0.28);
  --text: #ffffff;
  --muted: #b9bdd2;
  --purple: #6c3cff;
  --blue: #315dff;
  --green: #25d366;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(84, 48, 255, 0.32), transparent 34%),
    radial-gradient(circle at bottom left, rgba(49, 93, 255, 0.20), transparent 30%),
    linear-gradient(180deg, #02030a 0%, #050512 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.card {
  width: 100%;
  max-width: 520px;
  padding: 34px 22px 26px;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(12, 14, 28, 0.88), rgba(4, 5, 12, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
  text-align: center;
}

.logo {
  width: 310px;
  max-width: 88%;
  height: auto;
  display: block;
  margin: 0 auto 26px;
}

.profile-photo {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--purple);
  box-shadow:
    0 0 0 8px rgba(108, 60, 255, 0.08),
    0 0 34px rgba(108, 60, 255, 0.45);
  display: block;
  margin: 0 auto 22px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.role {
  margin: 14px 0 0;
  font-size: 1.08rem;
  line-height: 1.45;
  color: #eef0ff;
}

.tagline {
  max-width: 420px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 22px;
}

.badges span {
  padding: 7px 11px;
  border: 1px solid rgba(108, 60, 255, 0.32);
  border-radius: 999px;
  color: #d9d5ff;
  background: rgba(108, 60, 255, 0.08);
  font-size: 0.78rem;
}

.buttons {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.button {
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  color: var(--text);
  text-decoration: none;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 60, 255, 0.68);
  background: rgba(108, 60, 255, 0.10);
}

.button.primary {
  border-color: rgba(108, 60, 255, 0.78);
  background: linear-gradient(135deg, var(--purple), #4327d9);
  box-shadow: 0 12px 34px rgba(108, 60, 255, 0.28);
}

.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.25rem;
  color: #ffffff;
  background: rgba(108, 60, 255, 0.17);
}

.icon.whatsapp {
  color: var(--green);
  background: rgba(37, 211, 102, 0.10);
}

.button strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
}

.button small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.arrow {
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
}

footer {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(108, 60, 255, 0.34);
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer strong {
  color: #8c6bff;
  font-weight: 700;
}

@media (max-width: 420px) {
  .card {
    padding: 28px 16px 22px;
    border-radius: 24px;
  }

  .profile-photo {
    width: 148px;
    height: 148px;
  }

  .button {
    grid-template-columns: 42px 1fr 18px;
    padding: 14px;
  }

  .icon {
    width: 38px;
    height: 38px;
  }
}
