:root {
  --green: #20f08b;
  --green-dark: #0f6b33;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.82);
  --dark: #070808;
  --card-dark: rgba(22, 24, 27, 0.92);
  --border: rgba(255, 255, 255, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  background: var(--dark);
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--dark);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 14px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.7)),
    url("assets/background-gym.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center 14%, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.profile-card {
  width: min(100%, 720px);
  min-height: min(100vh, 1220px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 42px 22px 34px;
  text-align: center;
}

.profile-photo-wrap {
  width: clamp(190px, 45vw, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 30px;
  border: 8px solid var(--white);
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

h1 {
  max-width: 680px;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.05rem, 10.5vw, 5.9rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.55);
}

.role {
  margin-top: 8px;
  color: var(--soft-white);
  font-size: clamp(1.65rem, 5vw, 2.9rem);
  line-height: 1.05;
  font-weight: 500;
  text-transform: uppercase;
}

.accent-line {
  width: 86px;
  height: 7px;
  margin: 28px 0 24px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(32, 240, 139, 0.52);
}

.tagline {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 3.7vw, 2rem);
  line-height: 1.28;
}

.tagline strong {
  color: var(--white);
  font-weight: 900;
}

.link-list {
  width: min(100%, 590px);
  display: grid;
  gap: 18px;
}

.action-card {
  min-height: 104px;
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  color: var(--white);
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.action-card:hover,
.action-card:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.08);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

.whatsapp {
  order: 2;
  background: linear-gradient(135deg, #32934a, #0f5227);
}

.instagram {
  order: 3;
  background: linear-gradient(135deg, #7a19d6 0%, #b42a73 48%, #d7611d 100%);
}

.training {
  order: 1;
  background: linear-gradient(135deg, rgba(45, 48, 52, 0.96), rgba(16, 18, 20, 0.96));
}

.icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
}

.icon svg {
  width: 74px;
  height: 74px;
  fill: currentColor;
}

.text {
  display: grid;
  gap: 1px;
}

.text strong {
  font-size: clamp(2rem, 5.1vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 3.1vw, 1.55rem);
  line-height: 1.2;
}

.arrow {
  justify-self: end;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 4.4rem;
  line-height: 0.8;
  font-weight: 300;
}

.brand {
  width: min(100%, 590px);
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.brand-mark {
  height: 80px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 10px;
  font-family: Impact, "Arial Narrow", Arial, sans-serif;
  font-size: 4.8rem;
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: 0;
}

.mark-l {
  color: var(--green);
}

.mark-f {
  color: var(--white);
  margin-left: -4px;
}

.brand p {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand small {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .page {
    padding: 10px;
    background-position: center top;
  }

  .profile-card {
    min-height: 100vh;
    padding: 28px 6px 22px;
  }

  .profile-photo-wrap {
    border-width: 6px;
    margin-bottom: 22px;
  }

  .accent-line {
    width: 70px;
    height: 6px;
    margin: 20px 0 18px;
  }

  .tagline {
    margin-bottom: 24px;
  }

  .link-list {
    gap: 13px;
  }

  .action-card {
    min-height: 84px;
    grid-template-columns: 62px 1fr 24px;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .icon,
  .icon svg {
    width: 58px;
    height: 58px;
  }

  .arrow {
    font-size: 3.4rem;
  }

  .brand {
    margin-top: 34px;
    padding-top: 26px;
  }
}

@media (max-width: 370px) {
  .action-card {
    grid-template-columns: 52px 1fr 18px;
    padding-inline: 14px;
  }

  .icon,
  .icon svg {
    width: 48px;
    height: 48px;
  }

  .text strong {
    font-size: 1.62rem;
  }

  .text small {
    font-size: 0.92rem;
  }
}
