.brand-symbols {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 7px;
}

.brand-avatar-picture {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
  padding: 2px;
  border: 1px solid rgba(85, 211, 196, 0.38);
  border-radius: 50%;
  background: #080d0c;
  box-shadow: 0 0 0 3px rgba(224, 163, 48, 0.07);
}

.brand-avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.workflow-hero-art {
  width: min(calc(100% - 48px), 1180px);
  margin: clamp(34px, 5vw, 62px) auto 0;
  overflow: hidden;
  border: 1px solid rgba(85, 211, 196, 0.24);
  background: #080d0c;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.34);
}

.workflow-hero-art picture,
.workflow-hero-art img {
  display: block;
  width: 100%;
}

.workflow-hero-art picture {
  aspect-ratio: 3 / 1;
}

.workflow-hero-art img {
  height: 100%;
  object-fit: cover;
}

.route-map-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.route-map-head .route-label {
  margin: 0;
}

.route-owl,
.about-owl-picture {
  display: block;
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(85, 211, 196, 0.42);
  background: #080d0c;
  box-shadow: 0 0 0 4px rgba(224, 163, 48, 0.06);
}

.route-owl {
  width: 78px;
  height: 78px;
  border-radius: 50%;
}

.route-owl img,
.about-owl-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-brand-signature {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 18px 0 24px;
  padding: 15px;
  border: 1px solid rgba(85, 211, 196, 0.18);
  background: rgba(8, 16, 15, 0.72);
}

.about-owl-picture {
  width: 82px;
  height: 82px;
}

.profile-brand-signature strong {
  display: block;
  margin-top: 6px;
  color: #eee9df;
  font-size: 0.92rem;
}

.social-presence {
  border-top: 1px solid rgba(85, 211, 196, 0.16);
  border-bottom: 1px solid rgba(184, 174, 156, 0.12);
  background: rgba(8, 16, 15, 0.86);
}

.social-presence-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) auto minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  min-height: 112px;
  margin-inline: auto;
  padding: 22px 0;
}

.social-kicker,
.social-copy,
.social-handle {
  margin: 0;
}

.social-kicker {
  color: #55d3c4;
  font: 600 0.68rem/1.3 "IBM Plex Mono", Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-copy {
  margin-top: 7px;
  color: #aaa69d;
  font-size: 0.78rem;
}

.social-handle {
  color: #e0a330;
  font: 600 clamp(0.78rem, 1.25vw, 0.92rem)/1.3 "IBM Plex Mono", Consolas, monospace;
  letter-spacing: 0.02em;
}

.social-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(85, 211, 196, 0.26);
  color: #d8d3ca;
  font: 500 0.64rem/1 "IBM Plex Mono", Consolas, monospace;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

a.social-link:hover {
  border-color: #55d3c4;
  color: #08100f;
  background: #55d3c4;
}

.social-link-pending {
  border-color: rgba(184, 174, 156, 0.14);
  color: #77766f;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #55d3c4;
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .brand-avatar-picture {
    width: 38px;
    height: 38px;
  }

  .social-presence-inner {
    grid-template-columns: 1fr auto;
  }

  .social-platforms {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 1320px) {
  .header-action {
    display: none !important;
  }
}

@media (max-width: 680px) {
  .brand-symbols {
    gap: 5px;
  }

  .brand-avatar-picture {
    width: 34px;
    height: 34px;
    padding: 1px;
  }

  .workflow-hero-art {
    width: min(calc(100% - 30px), 720px);
    margin-top: 30px;
  }

  .workflow-hero-art picture {
    aspect-ratio: 720 / 904;
  }

  .route-owl {
    width: 66px;
    height: 66px;
  }

  .profile-brand-signature {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .about-owl-picture {
    width: 68px;
    height: 68px;
  }

  .social-presence-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(calc(100% - 30px), 1180px);
    padding: 28px 0;
  }

  .social-platforms {
    grid-column: auto;
  }

  .social-link {
    min-height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  a,
  button,
  input,
  select,
  textarea {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
